home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / WV GetRight Clear 01.xpl < prev    next >
Text File  |  2002-04-06  |  1KB  |  51 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="5"
  3. "COUNT"="1"
  4. "UIPATH"="Program Options\Other Programs\GetRight\"
  5. "NAME"="Recent URLs"
  6. "VERSION"="1.00"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Clear entered URLs"
  9. "DESCRIPTION 1"="If you don't want people to see which URLs you have recently entered, click on this button."
  10. "DESCRIPTION 2"="GetRight is a program which is able to continue an interrupted file download on Internet ..."
  11. "DESCRIPTION 3"="GetRight is available at http://www.getright.com/"
  12. "AUTHOR"="FORMATMAN"
  13. "CONTACTURL"="http://formatland.free.fr/"
  14. "COPYRIGHT"="Copyright ⌐ Formatman"
  15. "COMMENT 1"="For more informations, go to http://www.xsetup.net"
  16. "COMMENT 2"="Created by VORMELKER Werner"
  17. "COMMENT 3"="http://formatland.free.fr/"
  18. "COMMENT 4"="formatman@wanadoo.fr"
  19.  
  20. sP="HKCU\Software\HeadLight\GetRight\MRU\"
  21.  
  22.  
  23. Sub Plugin_Initialize 
  24.   If RegPathExists(sP)=false then
  25.      Disable()
  26.   end if 
  27. End Sub
  28.  
  29. Sub Plugin_CheckData(ElementIndex)
  30. End Sub
  31.  
  32. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  33.  if ElementIndex=1 then     
  34.     for l=0 to 10
  35.         s="URL" & l
  36.         v=RegReadValue(sP & s)
  37.         
  38.         If IsEmpty(v)=false then
  39.            Call RegDeleteValue(sP & S)
  40.         end if
  41.     Next
  42.  
  43.     Call MsgInformation("URL cleared !")
  44.  end if
  45.  
  46.  
  47. End Sub
  48.  
  49. Sub Plugin_Terminate 
  50. End Sub
  51.